home *** CD-ROM | disk | FTP | other *** search
/ Speccy ClassiX 1998 / Speccy ClassiX 98.iso / amiga_system / the_aminet / dev / gcc / ixemulsrc.lha / ixemul-41.4 / gnulib-soft-float / mulsf3.c < prev    next >
C/C++ Source or Header  |  1994-08-19  |  304b  |  19 lines

  1. #include "common.h"
  2. #ifdef IEEE_SINGBAS
  3. #include <inline/mathieeesingbas.h>
  4. #else
  5. #include <inline/mathffp.h>
  6. #include <inline/mathtrans.h>
  7. #endif
  8.  
  9. SFVALUE
  10. __mulsf3 (a, b)
  11.      FLOAT a, b;
  12. {
  13. #ifdef IEEE_SINGBAS
  14.   return IEEESPMul (a, b);
  15. #else
  16.   return SPTieee( SPMul( SPFieee(a), SPFieee(b)));
  17. #endif
  18. }
  19.